home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / www / cgi-bin / counter.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1996-11-11  |  156 b   |  10 lines

  1. #!/bin/ksh
  2. typeset -i i=0
  3. echo "Content-type: text/html\n"
  4. dir=${0%/*}
  5. file="$dir/../misc/counter.txt"
  6. read i < $file
  7. ((i=i+1))
  8. echo "$i" > $file
  9. echo "$i"
  10.